*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
	width: 100%;
	height: 100%;
	background-color:white;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: center;
	}

/*inicio de header*/
.header{
    width: 100%;
    background-color:white;
    height: 8em;
	display: flex;
	flex-direction: row;
	justify-content: left;
	align-items: center;
    }
.logo{
    object-fit: cover;
    height: 100px;
    width: 335px;
    margin-left: 122px;
    margin-top: -6px;
}
.barnav{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	}
.menu{
    width: 10%;
    height: 100%;
    color:black;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	}
.menu:hover{
   color:#990000;
   transition: 0.5s;
}

/* Quitar estilo por defecto de los enlaces del menú */
.barnav a {
  text-decoration: none;   /* quita subrayado */
  color: #000000;          /* negro */
  font-weight: 500;
}

/* Hover elegante */
.barnav a:hover {
  color: #990000;          /* rojo corporativo */
}
/* =========================
   SERVICIOS (GRID)
========================= */
.container{
  width: 100%;
  background: #990000;
  padding: 50px 0;
  display: flex;
  justify-content: center;
}

/* 2 columnas en desktop */
.grid-box{
  width: min(1100px, 92%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* tarjeta */
.box{
  background: #fff;
  border: 3px solid #4D0303;
  border-radius: 16px;
  padding: 22px 28px;
  min-height: 220px;
}

.box-title{
  margin: 0 0 12px 0;
  font-weight: 800;
  text-align: center;
  color: #000;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

.box-text{
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.55;
  text-align: justify;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";	
}

/*inicio de footer*/
.footer{
    width: 100%;
    background-color:white;
	height: 19em;	
}
.footer-logo{
    margin-top: -83px;
    margin-left: 89px;
}
.footer-grid {
    display: grid;
	grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
    gap: 16px;
    margin-top: 105px;
    align-items: center;
    margin-left: 110px;
}
.footer h4{
    margin-top: -141px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 10px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    align-items: center;
    color: black;
}

.footer a{
    display: block;
    padding-top: 0px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 13px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    color: black;
    margin-top: -5px;
	text-decoration: none;
}
.footer a:hover{
    color: #990000;
}
.footer-logo{
    height: 211px;
    width: auto;
    margin-bottom: 10px;
}
.small{
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    margin-left: -18px;
	}
.ruc {
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    margin-top: 13px;
}

.telefono{
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    margin-top: 14px;
	
}
.celular{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	
}
.direccion{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	
}